_use-authenticator.component.ts_ ```ts import { Component } from '@angular/core'; import { Amplify } from 'aws-amplify'; import { AuthenticatorService } from '@aws-amplify/ui-angular'; import awsExports from './aws-exports'; @Component({ selector: 'use-authenticator', templateUrl: 'useAuthenticator.component.html', }) export class UseAuthenticatorComponent { constructor(public authenticator: AuthenticatorService) { Amplify.configure(awsExports); } } ``` _use-authenticator.component.html_ ```html{4-6}

Welcome, {{ user.username }}!

```